d123319999e23b46ba894533fa1a33ac3561eb7f,src/main/java/net/foxdenstudio/sponge/foxguard/plugin/region/world/RectangularRegion.java,RectangularRegion,RectangularRegion,#String#List#String[]#CommandSource#,64
Before Change
for (int i = 0; i < args.length - 1; i += 2) {
int x, z;
try {
x = (int) FCUtil.parseCoordinate(source instanceof Player ?
((Player) source).getLocation().getBlockX() : 0, args[i]);
} catch (NumberFormatException e) {
throw new ArgumentParseException(
Text.of("Unable to parse \"" + args[i] + "\"!"), e, args[i], i);
After Change
for (int i = 0; i < args.length - 1; i += 2) {
int x, z;
try {
x = FCUtil.parseCoordinate(source instanceof Player ?
((Player) source).getLocation().getBlockX() : 0, args[i]);
} catch (NumberFormatException e) {
throw new ArgumentParseException(
Text.of("Unable to parse \"" + args[i] + "\"!"), e, args[i], i);